/-app ...
/-app/koBindingHandlers
/-app/moreDialog ...
Model.ts
layout.html
style.css
PageModel.ts
main.css
start.ts
/-docs
/-files
/-imports
/-persistence
/-typings
errors.js
functions.ts
index.html
try.js
 
1
.teapo-more-dialog-background {
2
  
3
  position: fixed;
4
  left: 0px; top: 0px;
5
  width: 100%; height: 100%;
6
  background: rgba(1,1,1,0.6);
7
  z-index: 200;
8
  
9
}
10
​
11
.teapo-more-dialog {
12
  
13
  position: fixed;
14
  left: 15%;
15
  width: 70%;
16
  top: 20%;
17
  height: 70%;
18
​
19
  background: gold;
20
​
21
}
22
​
23
.teapo-more-dialog input {
24
  
25
  width: 100%;
26
  font-size: 200%;
27
  
28
}
Updated 2014-9-29 23:29.